home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / kiss-0.11 / kiss-0 / kiss / src / getline / Makefile < prev    next >
Makefile  |  1993-08-15  |  245b  |  14 lines

  1. CC     = gcc
  2. CFLAGS = -Wall -DPOSIX
  3. LDFLAGS= 
  4.  
  5. testgl: libgetline.a testgl.o
  6.     $(CC) $(LDFLAGS) $(CFLAGS) -o testgl testgl.o -L. -lgetline
  7.  
  8. libgetline.a: getline.o
  9.     ar cr libgetline.a getline.o
  10.     -ranlib libgetline.a
  11.  
  12. clean:
  13.     rm -f *.o *.a testgl
  14.